Skip to content

Commit e4daa24

Browse files
authored
Merge branch 'main' into initial-variables-duration
2 parents 944caf8 + 6f49647 commit e4daa24

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+27900
-21918
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ npm-debug.log
66
test.css
77
test.css.map
88
test.html
9+
test*.html
910
test.sass
1011
test.scss
1112
test.css

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# Bulma Changelog
22

3+
## Unreleased
4+
5+
- Add .has-text-weight-extrabold as a typography class.
6+
37
## 1.0.3
48

59
### Bug Fixes
610

711
- Fix #3842: restore use of `$easing`, `$radius-rounded` and `$speed` Sass variables
812
- Fix #3920: migrate code to avoid Sass 1.80 deprecation warning of global built-in functions
913
- Fix #3945: add `$duration` Sass variable
14+
- Fix #3822: Non-minified version of bulma-prefixed was missing
15+
- Fix #3805: helper classes were missing prefix
1016

1117
### Documentation Fixes
1218

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Browse the [online documentation here.](https://bulma.io/documentation/start/ove
134134
| [Manifest](https://manifest.build) | Manifest is a lightweight Backend-as-a-Service with essential features: DB, Admin panel, API, JS SDK |
135135
| [Reactive Bulma](https://github.com/NicolasOmar/reactive-bulma) | A component library based on React, Bulma, Typescript and Rollup |
136136

137-
<p>Browser testing via <a href="https://www.lambdatest.com/" target="_blank"><img src="https://www.lambdatest.com/resources/images/logo-white.svg" style="vertical-align: middle;margin-left:5px" width="147" height="26" /></a></p>
137+
<p>Browser testing via<br /><a href="https://www.lambdatest.com/" target="_blank"><img src="https://bulma.io/assets/images/amis/lambdatest-logo.png" width="168" height="40" /></a></p>
138138

139139
## Copyright and license ![Github](https://img.shields.io/github/license/jgthms/bulma?logo=Github)
140140

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bulma",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"homepage": "https://bulma.io",
55
"authors": ["jgthms <bbxdesign@gmail.com>"],
66
"description": "Modern CSS framework based on Flexbox",

bulma.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
@charset "utf-8";
22

3-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
3+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
44
@use "sass";

css/bulma.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "UTF-8";
2-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
2+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
33
/* Bulma Utilities */
44
:root {
55
--bulma-control-radius: var(--bulma-radius);
@@ -3784,6 +3784,10 @@ a.box:active {
37843784
--bulma-button-border-width: max(2px, 0.125em);
37853785
--bulma-button-outer-shadow-alpha: 1;
37863786
}
3787+
.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
3788+
background-color: transparent;
3789+
box-shadow: none;
3790+
}
37873791
.button.is-inverted {
37883792
background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
37893793
color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));

css/bulma.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bulma.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-dark-mode.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@charset "UTF-8";
2-
/*! bulma.io v1.0.2 | MIT License | github.com/jgthms/bulma */
2+
/*! bulma.io v1.0.3 | MIT License | github.com/jgthms/bulma */
33
/* Bulma Utilities */
44
:root {
55
--bulma-control-radius: var(--bulma-radius);
@@ -981,6 +981,10 @@ a.box:active {
981981
--bulma-button-border-width: max(2px, 0.125em);
982982
--bulma-button-outer-shadow-alpha: 1;
983983
}
984+
.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
985+
background-color: transparent;
986+
box-shadow: none;
987+
}
984988
.button.is-inverted {
985989
background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
986990
color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));

css/versions/bulma-no-dark-mode.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-dark-mode.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-helpers-prefixed.css

Lines changed: 2808 additions & 1 deletion
Large diffs are not rendered by default.

css/versions/bulma-no-helpers-prefixed.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-helpers-prefixed.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-helpers.css

Lines changed: 2808 additions & 1 deletion
Large diffs are not rendered by default.

css/versions/bulma-no-helpers.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-no-helpers.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-prefixed.css

Lines changed: 21559 additions & 0 deletions
Large diffs are not rendered by default.

css/versions/bulma-prefixed.min.css.map renamed to css/versions/bulma-prefixed.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-prefixed.min.css

Lines changed: 2 additions & 21554 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/versions/bulma-prefixed.min.min.css

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/_includes/website/banner.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<div class="launch-code is-animated">
2-
<h3><a href="https://cssmasterclass.io/" target="_blank"><img src="{{site.url}}/assets/images/masterclass/logo-desktop.png" height="40" width="300"></a></h3>
3-
4-
<div class="launch-shine">
5-
<a class="shine" href="https://cssmasterclass.io/" target="_blank">
6-
<span>Get <strong>20% off</strong> with code <code>BULMA</code></span>
7-
</a>
8-
</div>
1+
<a href="https://cssmasterclass.io/" target="_blank" class="launch-code is-animated">
2+
<h3><img
3+
src="{{site.url}}/assets/images/masterclass/logo-desktop.png"
4+
height="40"
5+
width="300"
6+
/>
7+
</h3>
98

109
<small>
11-
Valid until the end of <strong>November 2024</strong>
10+
Learn CSS with 🎓 online interactive courses,📺 educational videos, and
11+
🧑🏻‍💻project-building tutorials.
1212
</small>
13-
</div>
13+
</a>

docs/_includes/website/carbon.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div id="carboncontainer" class="bd-carbon">
22
<div id="carbon">
3-
<a id="masterclass-carbon" href="https://cssmasterclass.io/" target="_blank" style="display: none; width: 400px; height: 260px;">
3+
<a id="masterclass-carbon" href="https://cssmasterclass.io/" target="_blank" style="display: none; aspect-ratio: 40 / 26; max-width: 400px; max-height: 260px;">
44
<img src="{{ site.url }}/assets/images/masterclass/masterclass-carbon.png" height="260" width="400" alt="CSS Masterclass">
55
</a>
66
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CWYIE237&placement=bulmaio&format=cover" id="_carbonads_js" onerror="this.previousElementSibling.style.display = 'flex'"></script>

docs/_includes/website/masterclass.html

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,41 @@
33

44
<a class="masterclass-body" href="https://cssmasterclass.io/" target="_blank">
55
<div class="masterclass-content is-hidden-desktop">
6-
<img src="{{site.url}}/assets/images/masterclass/logo-mobile.png" height="68" width="240">
7-
<img src="{{site.url}}/assets/images/masterclass/text-mobile.png" height="99" width="228">
8-
<img src="{{site.url}}/assets/images/masterclass/code-mobile.png" height="89" width="225">
6+
<img
7+
src="{{site.url}}/assets/images/masterclass/logo-mobile.png"
8+
height="68"
9+
width="240"
10+
/>
11+
<img
12+
src="{{site.url}}/assets/images/masterclass/text-mobile.png"
13+
height="99"
14+
width="228"
15+
/>
916
<div class="shine">
1017
<span>Get started for Free</span>
1118
</div>
1219
</div>
1320

1421
<div class="masterclass-content is-hidden-touch">
15-
<img src="{{site.url}}/assets/images/masterclass/logo-desktop.png" height="50" width="378">
16-
<img src="{{site.url}}/assets/images/masterclass/text-desktop.png" height="58" width="571">
17-
<img src="{{site.url}}/assets/images/masterclass/code-desktop.png" height="89" width="375">
22+
<img
23+
src="{{site.url}}/assets/images/masterclass/logo-desktop.png"
24+
height="50"
25+
width="378"
26+
/>
27+
<img
28+
src="{{site.url}}/assets/images/masterclass/text-desktop.png"
29+
height="58"
30+
width="571"
31+
/>
1832
<div class="shine">
1933
<span>Get started for Free</span>
2034
</div>
2135
</div>
2236
</a>
2337

24-
<button id="masterclass-close" class="modal-close is-large" aria-label="close"></button>
38+
<button
39+
id="masterclass-close"
40+
class="modal-close is-large"
41+
aria-label="close"
42+
></button>
2543
</div>

docs/_sass/docs/hero.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@
9393
}
9494

9595
.bd-carbon {
96+
aspect-ratio: 40 / 26;
97+
max-height: 280px !important;
98+
max-width: 400px !important;
99+
96100
&,
97101
& > div {
98102
align-items: center;
@@ -101,7 +105,6 @@
101105
}
102106

103107
> div {
104-
height: 280px !important;
105-
width: 400px !important;
108+
aspect-ratio: 40 / 26;
106109
}
107110
}

docs/assets/css/website.css

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7223,6 +7223,10 @@ a.box:active {
72237223
--bulma-button-border-width: max(2px, 0.125em);
72247224
--bulma-button-outer-shadow-alpha: 1;
72257225
}
7226+
.button.is-outlined[disabled], fieldset[disabled] .button.is-outlined {
7227+
background-color: transparent;
7228+
box-shadow: none;
7229+
}
72267230
.button.is-inverted {
72277231
background-color: hsl(var(--bulma-button-h), var(--bulma-button-s), calc(var(--bulma-button-color-l) + var(--bulma-button-background-l-delta)));
72287232
color: hsl(var(--bulma-button-h), var(--bulma-button-s), var(--bulma-button-background-l));
@@ -34284,14 +34288,18 @@ has-background-moon.is-hoverable:active {
3428434288
--scale: 0.75;
3428534289
}
3428634290
}
34291+
.bd-carbon {
34292+
aspect-ratio: 40/26;
34293+
max-height: 280px !important;
34294+
max-width: 400px !important;
34295+
}
3428734296
.bd-carbon, .bd-carbon > div {
3428834297
align-items: center;
3428934298
display: flex;
3429034299
justify-content: center;
3429134300
}
3429234301
.bd-carbon > div {
34293-
height: 280px !important;
34294-
width: 400px !important;
34302+
aspect-ratio: 40/26;
3429534303
}
3429634304

3429734305
.highlight {
@@ -37303,6 +37311,7 @@ div.shine {
3730337311
gap: 0.5rem 1rem;
3730437312
white-space: nowrap;
3730537313
flex-direction: column;
37314+
overflow: hidden;
3730637315
}
3730737316
.launch-code h3,
3730837317
.launch-code small {
@@ -37324,6 +37333,7 @@ div.shine {
3732437333
display: block;
3732537334
opacity: 1;
3732637335
font-weight: 400;
37336+
white-space: normal;
3732737337
}
3732837338
.launch-code .launch-shine {
3732937339
animation-duration: 1s;
@@ -37358,7 +37368,6 @@ div.shine {
3735837368
}
3735937369
.launch-code h3,
3736037370
.launch-code small {
37361-
flex-grow: 1;
3736237371
width: auto;
3736337372
text-align: center;
3736437373
max-width: none;
@@ -37368,8 +37377,6 @@ div.shine {
3736837377
@media screen and (min-width: 1024px) {
3736937378
.launch-code {
3737037379
animation-name: anim-slide-down;
37371-
position: sticky;
37372-
top: 0;
3737337380
z-index: 40;
3737437381
}
3737537382
}

docs/assets/css/website.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
3.29 KB
Loading

docs/documentation/form/general.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,8 @@
915915
<li><code>icon is-left</code> if <code>has-icons-left</code> is used</li>
916916
<li><code>icon is-right</code> if <code>has-icons-right</code> is used</li>
917917
</ul>
918-
<p>The size of the <strong>input</strong> will define the size of the icon container.</p>
918+
<p>Make sure the input is the control's first child, otherwise the icon may disappear when selected. The size of the
919+
<strong>input</strong> will define the size of the icon container.</p>
919920
</div>
920921

921922
{% include docs/elements/snippet.html content=icons_example clipped=true %}

docs/documentation/helpers/typography-helpers.html

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,13 +327,21 @@
327327
<td><code>has-text-weight-semibold</code></td>
328328
<td>
329329
Transforms text weight to
330-
<span class="has-text-weight-semibold">semi-bold</span>
330+
<span class="has-text-weight-semibold">semibold</span>
331331
</td>
332332
</tr>
333333
<tr>
334334
<td><code>has-text-weight-bold</code></td>
335335
<td>
336-
Transforms text weight to <span class="has-text-weight-bold">bold</span>
336+
Transforms text weight to
337+
<span class="has-text-weight-bold">bold</span>
338+
</td>
339+
</tr>
340+
<tr>
341+
<td><code>has-text-weight-extrabold</code></td>
342+
<td>
343+
Transforms text weight to
344+
<span class="has-text-weight-extrabold">extrabold</span>
337345
</td>
338346
</tr>
339347
</tbody>

0 commit comments

Comments
 (0)